home *** CD-ROM | disk | FTP | other *** search
/ Aminet 50 / Aminet 50 (2002)(GTI - Schatztruhe)[!][Aug 2002].iso / Aminet / text / edit / tecoc-146.lha / exenul.c < prev    next >
C/C++ Source or Header  |  1991-07-05  |  451b  |  17 lines

  1. /*****************************************************************************
  2.  
  3.     ExeNul()
  4.  
  5.     This function executes a null command.
  6.  
  7. *****************************************************************************/
  8.  
  9. #include "zport.h"        /* define portability identifiers */
  10. #include "tecoc.h"        /* define general identifiers */
  11. #include "defext.h"        /* define external global variables */
  12.  
  13. DEFAULT ExeNul()        /* execute a null command */
  14. {
  15.     return SUCCESS;
  16. }
  17.